home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
amiexpress
/
source
/
ae
/
code
/
ax3.00
/
myseek.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1980-01-03
|
294 b
|
15 lines
extern struct Library *DOSBase;
#include <pragmas/dos_pragmas.h>
#include <pragmas/exec_pragmas.h>
#include <dos/dos.h>
#include <exec/exec.h>
#include <clib/dos_protos.h>
long MySeek(BPTR f,long pos,long mode)
{
long shit;
Seek(f,pos,mode);
shit=Seek(f,0,OFFSET_CURRENT);
return(shit);
}